
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression
Advanced tools
Rename destructuring parameter to workaround https://bugs.webkit.org/show_bug.cgi?id=220517
The @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression package is designed to address a specific bug in Safari related to the collision of variable names in destructuring assignments within function expressions. This plugin works as part of the Babel toolchain to transform affected code into a format that avoids the bug, ensuring compatibility and preventing runtime errors in Safari.
Bug Fix for Safari Destructuring Collision
This code sample demonstrates a scenario where the plugin would transform the function expression to avoid a naming collision that Safari cannot handle. Without the plugin, this code might cause a runtime error in Safari due to the destructuring assignment.
const example = ({ a }) => { const { a: b } = someObject; return a + b; };
Similar in its focus on destructuring assignments, this plugin transforms destructuring patterns to be compatible with older JavaScript engines. While it doesn't target the specific Safari bug, it enhances compatibility of destructuring syntax overall.
Though not a direct counterpart, @babel/preset-env includes various plugins and configurations to ensure code runs smoothly across different environments, potentially including fixes for browser-specific issues like the one @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression addresses.
Rename destructuring parameter to workaround https://bugs.webkit.org/show_bug.cgi?id=220517
See our website @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression for more information.
Using npm:
npm install --save-dev @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression
or using yarn:
yarn add @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression --dev
v7.25.9 (2024-10-22)
babel-parser
, babel-template
, babel-types
syntacticPlaceholders
mode (@liuxingbaoyu)babel-helper-compilation-targets
, babel-preset-env
ClassAccessorProperty
to prevent the no-undef
rule (@victorenator)babel-parser
, babel-types
VISITOR_KEYS
etc. faster to access (@liuxingbaoyu)FAQs
Rename destructuring parameter to workaround https://bugs.webkit.org/show_bug.cgi?id=220517
The npm package @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression receives a total of 13,766,239 weekly downloads. As such, @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression popularity was classified as popular.
We found that @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.